Hệ thống quản lý phương tiện trong PHP

1 $(function(){
2     $(
".typed").typed({
3         strings: [
"Developers.", "Designers.", "People."],
4         
// Optionally use an HTML element to grab strings from (must wrap each string in a <p>)
5         stringsElement:
null,
6         
// typing speed
7         typeSpeed:
30,
8         
// time before typing starts
9         startDelay:
1200,
10         
// backspacing speed
11         backSpeed:
20,
12         
// time before backspacing
13         backDelay:
500,
14         
// loop
15         loop:
true,
16         
// false = infinite
17         loopCount:
5,
18         
// show cursor
19         showCursor:
false,
20         
// character for cursor
21         cursorChar:
"|",
22         
// attribute to type (null == text)
23         attr:
null,
24         
// either html or text
25         contentType:
'html',
26         
// call when done callback function
27         callback: function() {},
28         
// starting callback function before each string
29         preStringTyped: function() {},
30         
//callback for every typed string
31         onStringTyped: function() {},
32         
// callback for reset
33         resetCallback: function() {}
34     });
35 });


Gõ tìm kiếm nhanh...